@charset "utf-8";
*{
	margin: 0px;
	padding: 0px;
	font-family: Poppins;
	box-sizing: border-box;
}

.hero-header{
    width:100%;
    background: #222;
}
.wrapper{
    width:1000px;
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
}
header{
    padding: 40px 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.logo{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.logo i{
    height: 45px;
    width:45px;
    background-color: #007ced;
    border-radius: 50%;
    color:#fff;
    font-weight: 700;
    font-size: 1.5rem;
    padding: 10px;
    margin-right: 5px;
    cursor: pointer;
    text-align: center;
    
}
header .logo img:hover  {
    background-color: rgba(86,86,86,1.00);
    border-radius: 40px;
}
.logo .logo-text{
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    line-height: normal;
    margin-left: 5px;
}nav .togglebtn span{
    display: block;
    background-color: #007ced;
    margin: 0px 0px;
    width: 1%;
    height: 1px;
    transition: 0.3s;
    transition-property: transform, opacity;
    float: right;
}
nav .navlinks{
    list-style-type: none;
    clear: both;
}
nav .navlinks li{
	font-family: Clicker Script;
    display: inline-block;
    clear: both;
}
nav .navlinks li a{
	font-family: Clicker Script;
    color: #e5e5e5;
    margin-right: 2.5rem;
    clear: both;
}

.body1{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(17,17,17,1.00)
}
.skills{
	width: 100vh;
	max-width: 600px;
	padding: 0 20px;
}
.skill-name{
	font-size: 10px;
	font-weight: 700px;
	color: #f1f1f1;
	text-decoration: uppercase;
	margin: 20px 0;
}
.skill-bar{
	height: 14px;
	background: #282828;
	border-radius: 3px;
}
.skill-per{
	height: 14px;
	background: #d13639;
	border-radius: 3px;
	position: relative;
	animation: fillBars 2.5s 1;
}

.skill-per::before{
	content: attr(per);
	position: absolute;
	pading: 4px 6px;
	background: #f1f1f1;
	border-radius: 4px;
	top: -25px;
	font-size: 12px;
	right: 0px;
	transform: translateX(50%);
}
.skill-per::after{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background: #f1f1f1;
	top: -15px;
	right: 0;
	transform: translateX(50%)rotate(45deg);
	border-radius: 2px;
}

@keyframes fillBars{
	from{
		width: 0;
	}
	to{
		width: 100%;
	}
}
